Fixed confusing audio and touch events because of shared enumeration values.
2 Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
12 /* Simple test of power subsystem. */
18 main(int argc, char *argv[])
20 /* Enable standard application logging */
21 SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
23 if (SDL_Init(0) == -1) {
24 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_Init() failed: %s\n", SDL_GetError());
28 char *base_path = SDL_GetBasePath();
29 if(base_path == NULL){
30 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't find base path: %s\n",
35 SDL_Log("base path: '%s'\n", SDL_GetBasePath());
38 char *pref_path = SDL_GetPrefPath("libsdl", "testfilesystem");
39 if(pref_path == NULL){
40 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't find pref path: %s\n",
44 SDL_Log("pref path: '%s'\n", SDL_GetPrefPath("libsdl", "testfilesystem"));
47 SDL_Log("base path: '%s'\n", SDL_GetBasePath());
48 SDL_Log("pref path: '%s'\n", SDL_GetPrefPath("libsdl", "testfilesystem"));