mirror of
https://github.com/love2d/love.git
synced 2026-08-16 16:20:42 +02:00
Renamed Frame to Quad; added drawq/addq; fixed some bugs.
This commit is contained in:
@@ -74,8 +74,6 @@ namespace physfs
|
||||
save_path_full = std::string(getAppdataDirectory()) + std::string(LOVE_PATH_SEPARATOR);
|
||||
save_path_full += save_path_relative;
|
||||
|
||||
std::cout << save_path_full << std::endl;
|
||||
|
||||
// We now have something like:
|
||||
// save_identity: game
|
||||
// save_path_relative: ./LOVE/game
|
||||
@@ -282,11 +280,6 @@ namespace physfs
|
||||
if(!lua_isstring(L, 2))
|
||||
return luaL_error(L, "Second argument must be a string.");
|
||||
|
||||
// The third paramter must be a number to indicate the size of
|
||||
// the data.
|
||||
if(!lua_isnumber(L, 3))
|
||||
return luaL_error(L, "Third argument must be a number.");
|
||||
|
||||
if(lua_isstring(L, 1))
|
||||
{
|
||||
// Create the file.
|
||||
|
||||
Reference in New Issue
Block a user