We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35bc7f7 commit 463d8b1Copy full SHA for 463d8b1
src/core/core.c
@@ -358,6 +358,8 @@ void tic_api_reset(tic_mem* memory)
358
resetVbank(memory);
359
}
360
361
+ memory->ram->vram.vars.cursor.sprite = tic_cursor_arrow;
362
+ memory->ram->vram.vars.cursor.system = true;
363
memory->ram->input.mouse.relative = 0;
364
365
soundClear(memory);
src/studio/studio.c
@@ -2269,9 +2269,6 @@ static void processMouseStates(Studio* studio)
2269
2270
tic_mem* tic = studio->tic;
2271
2272
- tic->ram->vram.vars.cursor.sprite = tic_cursor_arrow;
2273
- tic->ram->vram.vars.cursor.system = true;
2274
-
2275
for(s32 i = 0; i < COUNT_OF(studio->mouse.state); i++)
2276
{
2277
MouseState* state = &studio->mouse.state[i];
0 commit comments