mirror of
https://github.com/NoelFB/blah.git
synced 2025-04-05 00:16:05 +08:00
Fixes for building on Linux
This commit is contained in:
parent
cc5e222be5
commit
55f816043a
@ -166,6 +166,9 @@ uint64_t PlatformBackend::time()
|
|||||||
return (uint64_t)SDL_GetTicks();
|
return (uint64_t)SDL_GetTicks();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Macro defined by X11 conflicts with MouseButton enum
|
||||||
|
#undef None
|
||||||
|
|
||||||
void PlatformBackend::frame()
|
void PlatformBackend::frame()
|
||||||
{
|
{
|
||||||
// update the mouse every frame
|
// update the mouse every frame
|
||||||
@ -567,7 +570,9 @@ void PlatformBackend::dir_enumerate(Vector<FilePath>& list, const char* path, bo
|
|||||||
if (dp->d_name[0] == '.')
|
if (dp->d_name[0] == '.')
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
FilePath subpath = FilePath(path).append(dp->d_name);
|
FilePath subpath = FilePath(path);
|
||||||
|
if (subpath.end()[-1] != '/') subpath = subpath.append("/");
|
||||||
|
subpath = subpath.append(dp->d_name);
|
||||||
list.push_back(subpath);
|
list.push_back(subpath);
|
||||||
|
|
||||||
if (recursive && dp->d_type == DT_DIR)
|
if (recursive && dp->d_type == DT_DIR)
|
||||||
|
Loading…
Reference in New Issue
Block a user