aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-08-25 15:00:53 -0400
committertcsullivan <tullivan99@gmail.com>2019-08-25 15:00:53 -0400
commita3009ec0079769837dcbd690b0fb1ba54d379a85 (patch)
tree9aa0f78876e5883423fa5632d772f8019c26ae56 /src
parentad4aa3b16a9fc333a9ee9c8b35a1f40cf47822bf (diff)
missing error return; added documentation
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9b88994..bd53101 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -29,25 +29,27 @@ constexpr int height = 480;
int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[])
{
- std::cout << "Hello, world!" << std::endl;
-
+ // Initialize SDL
if (SDL_Init(SDL_INIT_VIDEO) != 0) {
- std::cerr << "SDL failed to initialize: " << SDL_GetError() <<
- std::endl;
+ std::cerr << "SDL failed to initialize: " << SDL_GetError()
+ << std::endl;
return -1;
} else {
atexit(SDL_Quit);
}
+ // Create our window
std::unique_ptr<SDL_Window, decltype(&SDL_DestroyWindow)> window
(SDL_CreateWindow(title, SDL_WINDOWPOS_UNDEFINED,
SDL_WINDOWPOS_UNDEFINED, width, height, 0), SDL_DestroyWindow);
if (window.get() == nullptr) {
- std::cerr << "SDL window creation failed: " << SDL_GetError() <<
- std::endl;
+ std::cerr << "SDL window creation failed: " << SDL_GetError()
+ << std::endl;
+ return -1;
}
+ // TODO game
SDL_Delay(1000);
return 0;