diff --git a/qb/config.params.sh b/qb/config.params.sh index 61d5a41861..202e158b27 100644 --- a/qb/config.params.sh +++ b/qb/config.params.sh @@ -79,7 +79,7 @@ HAVE_PRESERVE_DYLIB=no # Enable dlclose() for Valgrind support HAVE_PARPORT=auto # Parallel port joypad support HAVE_IMAGEVIEWER=yes # Built-in image viewer support. HAVE_MMAP=auto # MMAP support -HAVE_QT=no # QT companion support +HAVE_QT=no # Qt companion support HAVE_XSHM=no # XShm video driver support HAVE_CHEEVOS=yes # Retro Achievements HAVE_SHADERPIPELINE=yes # Additional shader-based pipelines diff --git a/retroarch.c b/retroarch.c index 96627dcdf5..bb375b4c0b 100644 --- a/retroarch.c +++ b/retroarch.c @@ -220,7 +220,7 @@ static void retroarch_print_features(void) _PSUPP(cocoa, "Cocoa", "Cocoa UI companion support " "(for OSX and/or iOS)"); - _PSUPP(qt, "QT", "QT UI companion support"); + _PSUPP(qt, "Qt", "Qt UI companion support"); _PSUPP(avfoundation, "AVFoundation", "Camera driver"); _PSUPP(v4l2, "Video4Linux2", "Camera driver"); } diff --git a/ui/drivers/qt/wimp-test/main.cpp b/ui/drivers/qt/wimp-test/main.cpp index 868dab39bc..7dbfd5e59a 100644 --- a/ui/drivers/qt/wimp-test/main.cpp +++ b/ui/drivers/qt/wimp-test/main.cpp @@ -15,7 +15,7 @@ void *initGui(void *arg) { char **arguments = (char**)arg; t = ctrWimp(i,arguments); - CreateMainWindow(t); //-->uncomment this to open the QT gui + CreateMainWindow(t); //-->uncomment this to open the Qt GUI return 0; } diff --git a/ui/drivers/qt/wimp/wimp.h b/ui/drivers/qt/wimp/wimp.h index 6c7c368677..f404e852eb 100644 --- a/ui/drivers/qt/wimp/wimp.h +++ b/ui/drivers/qt/wimp/wimp.h @@ -41,7 +41,7 @@ class WIMPSHARED_EXPORT Wimp : public QGuiApplication public: Wimp(int argc, char *argv[]): QGuiApplication(argc, argv) {} - /* create the main QT window */ + /* create the main Qt window */ int CreateMainWindow(); /* get a pointer to RetroArch settings */