mirror of
https://github.com/rhaleblian/dslibris.git
synced 2025-06-18 08:45:40 -04:00
Fix missing titles in browser
This commit is contained in:
parent
e187c2468c
commit
681e4113bd
3
.vscode/c_cpp_properties.json
vendored
3
.vscode/c_cpp_properties.json
vendored
@ -14,7 +14,8 @@
|
||||
"/opt/devkitpro/libnds/include",
|
||||
"/opt/devkitpro/libnds/include/nds",
|
||||
"/opt/devkitpro/portlibs/nds/include",
|
||||
"/opt/devkitpro/portlibs/nds/include/freetype2"
|
||||
"/opt/devkitpro/portlibs/nds/include/freetype2",
|
||||
"/opt/devkitpro/portlibs/nds/include/freetype2/freetype"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
2
Makefile
2
Makefile
@ -34,7 +34,7 @@ INCLUDES := include build
|
||||
#---------------------------------------------------------------------------------
|
||||
ARCH := -mthumb -mthumb-interwork
|
||||
|
||||
CFLAGS := -g -Wall -O2 \
|
||||
CFLAGS := -Wall -O2 \
|
||||
-I$(DEVKITPRO)/portlibs/nds/include/freetype2 \
|
||||
-march=armv5te -mtune=arm946e-s -fomit-frame-pointer \
|
||||
-ffast-math \
|
||||
|
@ -210,6 +210,7 @@ u8 Book::Index()
|
||||
{
|
||||
std::string path;
|
||||
path.append(GetFolderName());
|
||||
path.append("/");
|
||||
path.append(GetFileName());
|
||||
int err = epub(this,path,true);
|
||||
return err;
|
||||
|
Loading…
Reference in New Issue
Block a user