Changeset 821a4658d2c5d6b9a6670dc3640c890b71a43805
- Timestamp:
- 05/05/08 22:10:45
(5 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1210018245 +0200
- git-parent:
[2ff00958881a01801c745a741f64db3679217d83]
- git-author:
- Rafaël Carré <funman@videolan.org> 1210018245 +0200
- Message:
Read the correct type from the vlc value - fixes #1569
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2ff0095 |
r821a465 |
|
| 1153 | 1153 | } |
|---|
| 1154 | 1154 | |
|---|
| 1155 | | var_Get( p_playlist, "random", &val ); |
|---|
| 1156 | | i_random = val.i_int; |
|---|
| 1157 | | |
|---|
| 1158 | | var_Get( p_playlist, "repeat", &val ); |
|---|
| 1159 | | i_repeat = val.i_int; |
|---|
| 1160 | | |
|---|
| 1161 | | var_Get( p_playlist, "loop", &val ); |
|---|
| 1162 | | i_loop = val.i_int; |
|---|
| | 1155 | i_random = var_CreateGetBool( p_playlist, "random" ); |
|---|
| | 1156 | |
|---|
| | 1157 | i_repeat = var_CreateGetBool( p_playlist, "repeat" ); |
|---|
| | 1158 | |
|---|
| | 1159 | i_loop = var_CreateGetBool( p_playlist, "loop" ); |
|---|
| 1163 | 1160 | |
|---|
| 1164 | 1161 | if( lock ) |
|---|