1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 08:51:22 +00:00

Change to qbx.cpp to add proper support for Linux directory structure for User Mods.

This commit is contained in:
SMcNeill 2014-06-20 16:20:56 -04:00
parent 12fdb2c77a
commit d18fdc9769

View file

@ -100,9 +100,12 @@ struct stat statbuf;
//
//********************************************************
#include "User Mods\user_list.h"
#ifdef QB64_BACKSLASH_FILESYSTEM
#include "User Mods\user_list.h"
#else
#include "User Mods/user_list.h"
#endif