Fixed typo in the previous commit.

This commit is contained in:
NovaRain
2018-10-14 10:15:02 +08:00
parent 85bb34377c
commit f4d7ccef40
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -442,7 +442,7 @@ Some utility/math functions are available:
> void sfall_func5("create_win", string winName, int x, int y, int width, int height)
> void sfall_func6("create_win", string winName, int x, int y, int width, int height, int flags)
- works just like vanilla CreateWin function, but creates a window with MoveOnTop flag if flags argument is not specified, and allows to set additional flags for the created window
- works just like vanilla CreateWin function, but creates a window with MoveOnTop flag if the flags argument is not specified, and allows to set additional flags for the created window
- MoveOnTop flag allows the created window to be placed on top of the game interface
------------------------
+1 -1
View File
@@ -280,7 +280,7 @@ static void fs_seek2() {
int id = idArg.asInt(), pos = posArg.asInt();
FSseek(id, pos);
} else {
FSOpcodeInvalidArgs("fs_pos()");
FSOpcodeInvalidArgs("fs_seek()");
}
}