mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-01 06:23:35 +01:00
core: fix erroneous VBR address choice in gint_switch()
This one never worked even by accident, it just went untested for a couple hours.
This commit is contained in:
parent
bf2d407f1d
commit
91fd2e5e6a
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ void gint_switch(void (*function)(void))
|
|||
{
|
||||
if(drv->wait) drv->wait();
|
||||
}
|
||||
gint_setvbr((uint32_t)&gint_vbr, gint_switch_in);
|
||||
gint_setvbr(gint_vbr, gint_switch_in);
|
||||
}
|
||||
|
||||
int __Timer_Install(int id, void (*handler)(void), int delay);
|
||||
|
|
Loading…
Reference in a new issue