Changeset 7 in svn


Ignore:
Timestamp:
Mar 18, 2015 2:00:38 PM (11 years ago)
Author:
jglee
Message:

엔지니어 모드 3번 지상파 방송 채널검색 온/오프 추가

Location:
trunk/zasc/app_c
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/zasc/app_c/DST_GlobalVariables.h

    r2 r7  
    44#include "DST_Common.h" 
    55 
     6extern bool DST_g_isAirOnly; 
    67extern DS_U32 DST_g_LastTuneTryTime; // APP ä³Î Æ©´× ½ÃÀÛ 
    78extern DS_U32 DST_g_LastTuneTime; // ¼Ò½º/Æ©´× ÈÄ ¸î ƽÀÌ Áö³µ´ÂÁö 
  • trunk/zasc/app_c/DST_WinEngineerMenu.c

    r4 r7  
    256256                sprintf(strText[8], "2. swich on/off WeakSignal Mute :  [%s]", DST_g_WeakSignalMuteOff?(char*)"OFF":(char*)"ON"); 
    257257                this->DrawText(this, 2, 262, this->rect.w, 20, strText[8], &(this->font));       
    258                  
     258                sprintf(strText[9], "3. swich Only-Terrestrial-Broadcasting Searching Mode :  [%s]", DST_g_isAirOnly?(char*)"ON":(char*)"OFF"); 
     259                this->DrawText(this, 2, 262, this->rect.w, 20, strText[8], &(this->font));       
     260 
    259261                this->DrawText(this, 2, 362, this->rect.w, 20, (char*)"[0..9] Select ", &(this->font));  
    260262 
     
    277279                                this->Show(this); 
    278280                        case VK_3: 
     281                                DST_g_isAirOnly = !DST_g_isAirOnly; 
     282                                this->Show(this); 
    279283                        case VK_4: 
    280284                        case VK_5: 
Note: See TracChangeset for help on using the changeset viewer.