@@ -41,9 +41,9 @@ int main() {
4141
4242 // Check if there are files to process.
4343 if (droppedFiles.empty ()) {
44- DrawText (" Drop your files to this window!" , 100 , 40 , 20 , DARKGRAY);
44+ raylib:: DrawText (" Drop your files to this window!" , 100 , 40 , 20 , DARKGRAY);
4545 } else {
46- DrawText (" Dropped files:" , 100 , 40 , 20 , DARKGRAY);
46+ raylib:: DrawText (" Dropped files:" , 100 , 40 , 20 , DARKGRAY);
4747
4848 // Iterate through all the dropped files.
4949 for (int i = 0 ; i < droppedFiles.size (); i++) {
@@ -53,10 +53,10 @@ int main() {
5353 DrawRectangle (0 , 85 + 40 *i, screenWidth, 40 , Fade (LIGHTGRAY, 0 .3f ));
5454
5555 // Display the path to the dropped file.
56- DrawText (droppedFiles[i].c_str (), 120 , 100 + 40 * i, 10 , GRAY);
56+ raylib:: DrawText (droppedFiles[i].c_str (), 120 , 100 + 40 * i, 10 , GRAY);
5757 }
5858
59- DrawText (" Drop new files..." , 100 , 110 + 40 * droppedFiles.size (), 20 , DARKGRAY);
59+ raylib:: DrawText (" Drop new files..." , 100 , 110 + 40 * droppedFiles.size (), 20 , DARKGRAY);
6060 }
6161 }
6262 EndDrawing ();
0 commit comments