Basically my Idea is/was to use 1 Function that being DisplayErrorWindow and have all the Errortexts basically inside it as nothing ever changes aside from the Text i couldve just used if statements :P
But sadly it wiull only display the first Error Text and not any of the other Error Texts no matter what i modify and i did already check my if statement Logic inside the Function and nothings wrong on that Part :c
RetroHax
huh? O.o
so you mean like this for Example? >.>
int main() {
ErrorWindow* ErrorWin;
MainWindow MainWin(&ErrorWin);
and then inside mainwindow source files like this? O.o
class MainWindow {
public:
MainWindow(ErrorWindow* ErrorWin);
private:
ErrorWindow* ErrWin;
MainWindow::MainWindow(ErrorWindow* ErrorWin) : ErrWin(ErrorWin) {
because all i recieve is this error even tho i included errorwindow.hpp inside mainwindow.hpp and cpp file >.>
In file included from src/gui/errorwindow.hpp:20,
from src/main.cpp:13:
src/gui/mainwindow.hpp:56:27: error: expected ‘)’ before ‘*’ token
56 | MainWindow(ErrorWindow* ErrorWin);
| ~ ^
| )
src/gui/mainwindow.hpp:83:5: error: ‘ErrorWindow’ does not name a type
83 | ErrorWindow* ErrWin;
| ^~~~~~~~~~~
make: *** [Linux.mk:39: build/main.o] Error 1
well without iocane https://retro-hax.net/ can be accessed but just if i do uncom,ment the iocane stuff then i just get this 421 error But iocane is running via the systemd system and started so i dont understand why it doesnt work easily >.>
Well for me my Physical Host Layout how do you mean? O.o
Like i just use Caddy as my Web Server running on Port 80 and 443 which are open physically on my Router >.>
and i dont think i use a Proxy? >.>
I infact dont even use a Firewall tho i probably should set that up sometimes XD
eh while i appreciate this Project i do also think that contributing to Software like Matrix or XMPP would be better as theyre actually used in Production and Companies :P
huh? >.>
Peak Post! :D
ALso yea i 100% agree! >:D
I personally really do not understand the reason as to why People are so Happy about GenAI like WTF?! >.>
The only Thing i see in LLMs is the use for Translations and Scientific Stuff for Language Helping SUpport and such Cases where it actually makes Sense as a Tool :P
But GenAI as a whole where it just shits out a bunch of NonSense and calls it "Good XYZ Thing" is just ugh -.-
i did try Heroic recently but i just found it too Clunky for me to use in the Sense of its UI sadly :(
Also i dont like using Electron really >.>
Do you by chance know of some Workaround that is maybe even automated to a degree? :0
Best Thing i found so far is editing the .desktop File and extracting the icon from its exe using icoutils which is kinda combersume and annoying to do manually :P
As much as i am happy for those Gamrs that rely on ANti Cheat Games also being able to switch to Linux i also wanna puke my Guts out as i really hate Anti Cheat overall -.-
Anti Cheat has been and always will be the Enemy of Gamers and Gaming as whole >.>
ah i did not even knew this one existed :0
RThats cool honestly :P
Sehr schöner ARzikel :D
auch wenn ich leider 2 Pausen machen musste beim lesen durch mein ADHS :c
yup just removed the infinite cycle by just doing class ErrorWindow; inside mainwindow.hpp :P
also if i remove MainWindow MainWin; from main then obviously all i get is a compiler Error as i require MainWin inside my Main Function >.>