diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 00:18:24 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 00:18:24 -0500 |
commit | 1f0b774c59ea917f069fc5be95124afd89a8dd4c (patch) | |
tree | 73397bbe8e3f696c1ec3e120bcb72485ec97accd /kpoker | |
parent | 7837f2ddb80e14ae851f95d4a86d8246d1d8db4f (diff) | |
download | tdegames-1f0b774c59ea917f069fc5be95124afd89a8dd4c.tar.gz tdegames-1f0b774c59ea917f069fc5be95124afd89a8dd4c.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'kpoker')
-rw-r--r-- | kpoker/poker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpoker/poker.h b/kpoker/poker.h index d139ea2b..ff388950 100644 --- a/kpoker/poker.h +++ b/kpoker/poker.h @@ -43,7 +43,7 @@ typedef enum { C_NINE, D_NINE, S_NINE, H_NINE, C_TEN, D_TEN, S_TEN, H_TEN, C_JACK, D_JACK, S_JACK, H_JACK, - C_TQUEEN, D_TQUEEN, S_TQUEEN, H_TQUEEN, + C_QUEEN, D_QUEEN, S_QUEEN, H_QUEEN, C_KING, D_KING, S_KING, H_KING, C_ACE, D_ACE, S_ACE, H_ACE, ROOF // to get a roof on the value. @@ -73,7 +73,7 @@ typedef enum { NINE, TEN, JACK, - TQUEEN, + QUEEN, KING, ACE // The most valuable rank } CardRank; |