This commit is contained in:
wu58430 2023-12-04 20:29:21 +08:00
parent 7a6a1d7c3d
commit 58aa8f0c44
2 changed files with 17 additions and 4 deletions

View file

@ -126,7 +126,7 @@
<workItem from="1701413653518" duration="3544000" /> <workItem from="1701413653518" duration="3544000" />
<workItem from="1701430185864" duration="10115000" /> <workItem from="1701430185864" duration="10115000" />
<workItem from="1701559895523" duration="22519000" /> <workItem from="1701559895523" duration="22519000" />
<workItem from="1701678199532" duration="12919000" /> <workItem from="1701678199532" duration="13406000" />
</task> </task>
<task id="LOCAL-00001" summary="bug fix"> <task id="LOCAL-00001" summary="bug fix">
<created>1701136012311</created> <created>1701136012311</created>
@ -415,7 +415,21 @@
<option name="project" value="LOCAL" /> <option name="project" value="LOCAL" />
<updated>1701692190748</updated> <updated>1701692190748</updated>
</task> </task>
<option name="localTasksCounter" value="42" /> <task id="LOCAL-00042" summary="MDC RX">
<created>1701692299182</created>
<option name="number" value="00042" />
<option name="presentableId" value="LOCAL-00042" />
<option name="project" value="LOCAL" />
<updated>1701692299182</updated>
</task>
<task id="LOCAL-00043" summary="MDC RX">
<created>1701692636883</created>
<option name="number" value="00043" />
<option name="presentableId" value="LOCAL-00043" />
<option name="project" value="LOCAL" />
<updated>1701692636883</updated>
</task>
<option name="localTasksCounter" value="44" />
<servers /> <servers />
</component> </component>
<component name="TypeScriptGeneratedFilesManager"> <component name="TypeScriptGeneratedFilesManager">

View file

@ -1664,8 +1664,7 @@ if( gIsInSubMenu && edit_index >= 0){
if (bKeyPressed && edit_index < 4 ) { if (bKeyPressed && edit_index < 4 ) {
char c = edit[edit_index] + Direction; char c = edit[edit_index] + Direction;
if(c<'0')c='F'; if(c<'0')c='F';
else if(c>'9')c='A'; else if(c>'9'&&c<'A')c='A';
else if(c<'A')c='9';
else if(c>'F')c='0'; else if(c>'F')c='0';
edit[edit_index]=c; edit[edit_index]=c;
gRequestDisplayScreen = DISPLAY_MENU; gRequestDisplayScreen = DISPLAY_MENU;