mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 14:09:06 +00:00
Win32 resource file update, icons, and one little float->int cast fix in ScriptInterface
This commit is contained in:
parent
91bb344c9a
commit
1386e9edb3
4 changed files with 16 additions and 3 deletions
BIN
Aquaria/AquariaWin32.ico
Normal file
BIN
Aquaria/AquariaWin32.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
Aquaria/AquariaWin32Dev.ico
Normal file
BIN
Aquaria/AquariaWin32Dev.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
|
@ -3835,7 +3835,7 @@ luaFunc(spawnManaBall)
|
|||
Vector p;
|
||||
p.x = lua_tonumber(L, 1);
|
||||
p.y = lua_tonumber(L, 2);
|
||||
int amount = lua_tonumber(L, 3);
|
||||
float amount = lua_tonumber(L, 3);
|
||||
dsq->game->spawnManaBall(p, amount);
|
||||
luaReturnNil();
|
||||
}
|
||||
|
|
|
@ -19,11 +19,18 @@ along with this program; if not, write to the Free Software
|
|||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include "AquariaCompileConfig.h"
|
||||
|
||||
#include <Winver.h>
|
||||
#include <Windows.h>
|
||||
|
||||
#include "resource.h" // Might as well use what's there, even though it's questionable.
|
||||
#include "custom-fields.h"
|
||||
|
||||
#define AQUARIA_RC_FILEVERSION 1,1,3,999
|
||||
#define AQUARIA_RC_PRODUCTVERSION 1,1,3,0
|
||||
#define AQUARIA_RC_PRODUCTVERSION_STRING "1.1.3"
|
||||
#define AQUARIA_RC_COMMENTS AQUARIA_OVERRIDE_VERSION_STRING
|
||||
#define AQUARIA_RC_FILEVERSION_STRING "1.1.3.fg"
|
||||
|
||||
// Version information
|
||||
1 VERSIONINFO
|
||||
|
@ -56,6 +63,12 @@ END
|
|||
END
|
||||
|
||||
// Icon
|
||||
101 ICON "Aquaria.ico"
|
||||
#if defined(AQUARIA_FULL) || defined(AQUARIA_DEMO)
|
||||
101 ICON "AquariaWin32.ico"
|
||||
#else
|
||||
101 ICON "AquariaWin32Dev.ico"
|
||||
#endif
|
||||
|
||||
//101 ICON "Aquaria.ico"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue