Lunchtray
27th March 2008 16:57 UTC
PRODUCT_NAME issues
Hi can anyone help me with this problem? I can't seem to get this to correctly show as a PRODUCT_NAME:
!define PRODUCT_NAME "Texas Hold'Em"
Name "${PRODUCT_NAME}"
I know it's the " ' " I just don't know how to get around this...
Thanks.
Red Wine
27th March 2008 17:27 UTC
How about this,
!define PRODUCT_NAME "Texas Hold'Em"
Name `${PRODUCT_NAME}`
Lunchtray
27th March 2008 18:35 UTC
that didn't work but that ` that you used when replacing the regular ' worked.
Thanks.