Updated TODO comments

This commit is contained in:
Kayne Ruse
2015-02-04 16:52:22 +11:00
parent a18577665a
commit 5583ba4323
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ void InWorld::FrameEnd() {
} }
void InWorld::RenderFrame() { void InWorld::RenderFrame() {
SDL_FillRect(GetScreen(), 0, 0); // SDL_FillRect(GetScreen(), 0, 0);
Render(GetScreen()); Render(GetScreen());
SDL_Flip(GetScreen()); SDL_Flip(GetScreen());
fps.Calculate(); fps.Calculate();
+1 -1
View File
@@ -2,7 +2,7 @@
CREATE TABLE IF NOT EXISTS Accounts ( CREATE TABLE IF NOT EXISTS Accounts (
uid INTEGER PRIMARY KEY AUTOINCREMENT, uid INTEGER PRIMARY KEY AUTOINCREMENT,
username varchar(100) UNIQUE, username varchar(100) UNIQUE, --TODO: Swap username for email address
--TODO: server-client security --TODO: server-client security
-- passhash varchar(100), -- passhash varchar(100),
+1
View File
@@ -7,6 +7,7 @@ TODO: Account passwords (list)
* ... * ...
* salts & hashes * salts & hashes
TODO: Make sure login errors are sent to the client
TODO: Split config.cfg in two, one for the server and the client TODO: Split config.cfg in two, one for the server and the client
TODO: Add the "home" parameter to the server's config file TODO: Add the "home" parameter to the server's config file
TODO: Waypoints, with positions and trigger zones (collision areas) for doors, monster spawns, etc. TODO: Waypoints, with positions and trigger zones (collision areas) for doors, monster spawns, etc.