-
-
Notifications
You must be signed in to change notification settings - Fork 90
Appvar previews display hex incorrectly #312
Copy link
Copy link
Closed
Description
CEmu version: v1.2dev (git: 76c6458)
In the "Calculator Variables" section, in the hexadecimal appvar preview, bytes that have a upper nibble of 0 (value < 0x10) will only display the lower nibble. This means it is impossible to tell the difference between appvars containing values 0x12 and 0x0102, for example.
Steps to Reproduce:
- Compile the following using the toolchain:
void main {
ti_var_t slot;
char temp[5] = {0, 0, 0, 0, 0};
ti_CloseAll();
slot = ti_Open("test", "w");
ti_Write(temp, 1, 5, slot);
}- Transfer and run the program
- Click "View calculator variables" in the "Calculator receive" section. The preview for the appvar
testwill be00000, while the expected value is0000000000as 5 bytes were written.
Reactions are currently unavailable