mirror of
https://github.com/libretro/Mu.git
synced 2026-04-28 17:12:44 +00:00
The analog resistance values per pixel can now be seen. The raw RGB16 display mode does have an issue when transitioning from red to green and green to blue where the pixel is almost black though.
13 lines
169 B
C++
13 lines
169 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
int main(int argc, char* argv[]){
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|