@@ -258,10 +258,10 @@ public String get() {
258
258
fontConfig .setGlyphRanges (fontAtlas .getGlyphRangesCyrillic ()); // Additional glyphs could be added like here or in addFontFrom*() methods
259
259
260
260
// We can add new fonts directly from file
261
- fontAtlas .addFontFromFileTTF ("imgui-lwjgl3/ src/test/resources/DroidSans.ttf" , 13 , fontConfig );
262
- fontAtlas .addFontFromFileTTF ("imgui-lwjgl3/ src/test/resources/DroidSans.ttf" , 14 , fontConfig );
263
- fontAtlas .addFontFromFileTTF ("imgui-lwjgl3/ src/test/resources/JetBrainsMono-Regular.ttf" , 13 , fontConfig );
264
- fontAtlas .addFontFromFileTTF ("imgui-lwjgl3/ src/test/resources/JetBrainsMono-Regular.ttf" , 14 , fontConfig );
261
+ fontAtlas .addFontFromFileTTF ("src/test/resources/DroidSans.ttf" , 13 , fontConfig );
262
+ fontAtlas .addFontFromFileTTF ("src/test/resources/DroidSans.ttf" , 14 , fontConfig );
263
+ fontAtlas .addFontFromFileTTF ("src/test/resources/JetBrainsMono-Regular.ttf" , 13 , fontConfig );
264
+ fontAtlas .addFontFromFileTTF ("src/test/resources/JetBrainsMono-Regular.ttf" , 14 , fontConfig );
265
265
266
266
// Or directly from memory
267
267
fontConfig .setName ("Roboto-Regular.ttf, 13px" ); // This name will be displayed in Style Editor
@@ -282,7 +282,7 @@ public String get() {
282
282
// Main application loop
283
283
private void loop () throws Exception {
284
284
// Load Duke image and convert it into OpenGL texture
285
- dukeTexture = loadTexture (ImageIO .read (new File ("imgui-lwjgl3/ src/test/resources/Duke_waving.png" )));
285
+ dukeTexture = loadTexture (ImageIO .read (new File ("src/test/resources/Duke_waving.png" )));
286
286
287
287
double time = 0 ; // to track our frame delta value
288
288
0 commit comments