Page 1 of 1

strange error with Pelles

Posted: Thu Mar 05, 2020 11:45 am
by Silvio.Falconi
[1]:PORC.EXE Resource\default.rc /I c:\work\pellesc\include /I c:\work\pellesc\include\win
PORC: Resource\default.rc(54): error: File not found: 'beach\simboliote.png'.
PORC: Resource\default.rc(55): error: File not found: 'beach\simboliew.png'.


I have on default.rc

BTN_PNG_NOTE 10 "beach\simboli\note.png"
BTN_PNG_ALL 10 "beach\simboli\new.png"

why not accept the string \simboli\new.png ?

Re: strange error with Pelles

Posted: Thu Mar 05, 2020 12:28 pm
by karinha
Intenta:

Code: Select all

BTN_PNG_NOTE 10 ".\beach\simboli\note.png"
BTN_PNG_ALL 10 ".\beach\simboli\new.png"
 

Re: strange error with Pelles

Posted: Thu Mar 05, 2020 12:38 pm
by Silvio.Falconi
resolved with
BTN_PNG_NOTE 10 "beach/simboli/note.png"
BTN_PNG_ALL 10 "beach/simboli/new.png"