silverbyte wrote:ALOGN , u insult my intelligence.... i know what path does, i feel like your trying to teach me grade one math...
maybe i wasn't clear.
Sorry for insulting you... didn't mean to, it's just that we have a lot of users here that don't know much....
silverbyte wrote:
if you install pspsdk1.0+ win32 the installer defaults to :
c:\program files\pspdev
inside that directory theres a file calles start.bat and the contents show :
set path=%path%;c:\pspsdk\bin
c:\pspsdk\bin does not exist.... so why am i making path = c:\pspsdk\bin
i believe this should be :
set path =c:\program files\pspdev;c:\program files\pspdev\bin
or
set path=%path%;%path%\bin
where %path% should be = c:\program files\pspdev
Now let met explain why I said what I did, since you do know what a path is. If you:
set path =%path%;%path%\bin
Then say in your path you have:
C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile
then you are just making your path
C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile;C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile\bin
As you can see, you are just adding a \bin to the final directory of your path, which isn't really what you want to do... not to mention repeating your entire path. I havn't looked at the code myself, but I believe that if you just change that to where your bin path is, then you should be ok.
*EDIT*
You *should* be ok with doing
set path = %path%;c:\program files\pspdev;c:\program files\pspdev\bin
(not sure if they allow spaces in path names, if not, use dos's ~1 stuff)