Hi!
I have got a problem with "game_save".
code:
"
#include <acknex.h>
#include <default.c>
function Session_Save()
{
result = game_save("test",0,SV_ALL);
if(result <= 0) sys_exit("");
}
function Session_Load()
{
result = game_load("test",0);
if(!result <= 0) sys_exit("");
}
function main()
{
on_c = Session_Save;
on_v = Session_Load;
}
"
Saving works without any problems. Then I press <v> and result is <= 0 and the game closes.